If you were to Google for the skill-sets of today’s business analyst and/or data scientist, you will likely find a general consensus that such positions require cross-disciplinary training. An excellent visual depiction of such skills was provided by Udeme Udofia in her medium article titled Discplines of Data Science. The image below is from her article:
In the ISA department, we have embraced this philosophy, which was in part driven by observed needs and wants by our industry partners. Thus, our hires over the past five years were trained in a number of disciplines: (a) Computer Science, (b) Industrial and Systems Engineering, and (c) Economics in addition to those who were trained in Information Technology and/or Business. Furthermore, we have attempted to hire faculty who have had significant industry experiences whether it is through consulting arrangements or previous employment. For example, our most recent hire Dr. Jon Michel came to us after serving as a Data Scientist at Google.
pacman::p_load(tidyverse, magrittr, bibliometrix)
M = convert2df('savedrecs.txt')
NetMatrix = biblioNetwork(M, analysis = "co-occurrences", network = "keywords", sep = ";")
net=networkPlot(NetMatrix, normalize="association", weighted=T, n = 30, Title = "Frequent Keywords Used in Our Analytics Faculty's Research", type = "fruchterman", size=T,edgesize = 1,labelsize=0.7)
Being on the cutting-edge of our fields, allows us to bring the latest technologies, problems and methodologies to our classroom. For example, if we use the latest research being done by Dr. Jones-Farmer and [myself]((https://miamioh.edu/fsb/directory/?up=/directory/megahefm) in the area of COVID modeling, this material was used to support learning outcomes during the current semester through:
ISA 401: Business Intelligence and Data Visualization, where the students were asked to: (a) scrape both Miami University and the state of Ohio-related COVID data, (b) preprocess and analyze all tweets made by President Trump on the Coronavirus, and (c) develop dashboards for Coronavirus data.
ISA 444: Business Forecasting. The students performed exploratory analysis of the time-series of confirmed COVID cases. You are encouraged to view our hands-on self-paced review materials for this class:
ISA 616: Communicating with Data, where the students had access to the faculty’s GitHub repository and the processes used in communicating analytic results (and how it varies by audience).
While you can find all our course offerings here, our analytics programs were designed to cover the entire analytics spectrum from data collection and management \(\longrightarrow\) descriptive analytics \(\longrightarrow\) explanatory and predictive analytics \(\longrightarrow\) prescriptive analytics.
pacman::p_load(tidyverse, rvest, magrittr, DT)
base_url = 'https://www.indeed.com/jobs?q=%27Business+Analyst%27+OR+%27Data+Scientist%27+OR+%27Data+Analyst%27+OR+%27Forecast+Analyst%27+OR+%27Data+Visualization%27+OR+%27ETL%27+$100,000&l=United+States&explvl=entry_level&start='
jobs = 1000
jobsDF = data.frame()
for (counter in seq(1, jobs, 15)) {
url = paste0(base_url, counter)
pageScrape = url %>% read_html()
titles = pageScrape %>% html_nodes('h2.title > a.jobtitle.turnstileLink') %>% html_text() %>% str_remove('\n')
company = pageScrape %>% html_nodes('span.company') %>% html_text() %>% str_remove_all('\n')
summary = pageScrape %>% html_nodes('div.summary') %>% html_text() %>% str_remove_all('\n')
jobLink = pageScrape %>% html_nodes('h2.title > a.jobtitle.turnstileLink') %>% html_attr('href')
jobLink = paste0('https://www.indeed.com', jobLink)
temp = data.frame(titles, company, summary, jobLink)
jobsDF = rbind(jobsDF, temp)
}
DT::datatable(jobsDF,
extensions = c('FixedColumns', 'Buttons'), options = list(
dom = 'Bfrtip',
scrollX = TRUE,
buttons = c('copy', 'csv', 'excel', 'pdf'),
fixedColumns = list(leftColumns = 2)),
rownames = TRUE)
Email: fmegahed@miamioh.edu | Phone: +1-513-529-4185 | Website: Miami University Official↩︎